2d4194
@@ -80,7 +80,8 @@
public class ThrowExceptionProcessor extends ServiceSupport implements AsyncProc
     }
 
     public String getTraceLabel() {
-        return "throwException[" + exception.getClass().getSimpleName() + "]";
+        String className = this.exception == null ? this.type.getSimpleName() : this.exception.getClass().getSimpleName();
+        return "throwException[" + className + "]";
     }
 
     public String getId() {
@@ -128,4 +129,4 @@
public class ThrowExceptionProcessor extends ServiceSupport implements AsyncProc
     protected void doStop() throws Exception {
         // noop
     }
-}
\ No newline at end of file
+}
